home *** CD-ROM | disk | FTP | other *** search
/ Nebula 1 / Nebula One.iso / Utilities / Converters / Convert_FONT / Source / PreFontConverter.h < prev    next >
Text File  |  1995-06-12  |  2KB  |  45 lines

  1. /***********************************************************************\
  2. Controller class for Convert FONT which converts Mac fonts to NeXT fonts.
  3. Copyright (C) 1993 David John Burrowes
  4.  
  5. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 1, or (at your option) any later version.
  6.  
  7. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for more details.
  8.  
  9. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  10.  
  11. The author, David John Burrowes, can be reached at:
  12.     davidjohn@kira.net.netcom.com
  13.     David John Burrowes
  14.     1926 Ivy #10
  15.     San Mateo, CA 94403-1367
  16. \***********************************************************************/
  17.  
  18.  
  19.  
  20. #import "ConvertController.h"
  21. #import "common.h"
  22. //93.01.24    djb    removed unneded defaults import.
  23.  
  24. @interface PreFontConverter:ConvertController
  25. {
  26.     Instance            afmFile;    // The AFM file that we create (this is temporary storage)
  27.     id                ConvertCommand;
  28.     
  29.     id                EncodingButton;
  30.     Boolean            UseNSEncoding;
  31. }
  32.  
  33. #define    USENSENCODING    "UseNSEncodingVector"
  34.  
  35.  
  36. - init;
  37. - free;
  38.  
  39. - displayPreferences: sender;
  40. - ChangeEncodingVector: sender;
  41.  
  42. - ConvertFrom: sourceFile To: destinationFile;
  43. - openDestFile: (CString) theFile;
  44. @end
  45.